home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / slrn / slrn_src / src / grplens.h < prev    next >
C/C++ Source or Header  |  1999-05-14  |  1KB  |  40 lines

  1. #ifndef _SLRN_GRPLENS_H
  2. #define _SLRN_GRPLENS_H
  3. /* Copyright (c) 1998 John E. Davis (davis@space.mit.edu)
  4.  *
  5.  * This file is part of slrn.
  6.  *
  7.  * Slrn is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  * 
  12.  * Slrn is distributed in the hope that it will be useful, but WITHOUT
  13.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15.  * for more details.
  16.  * 
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with Slrn; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, 59 Temple Place - Suite 330, 
  20.  * Boston, MA  02111-1307, USA.
  21.  */
  22.  
  23.  
  24. extern int Slrn_Use_Group_Lens;
  25. extern int slrn_init_grouplens (void);
  26. extern void slrn_close_grouplens (void);
  27. extern int slrn_put_grouplens_scores (void);
  28. extern int slrn_get_grouplens_scores (void);
  29. extern void slrn_group_lens_rate_article (Slrn_Header_Type *, int, int);
  30.  
  31. extern char *Slrn_GroupLens_Pseudoname;
  32. extern char *Slrn_GroupLens_Host;
  33. extern int slrn_grouplens_add_group (char *);
  34.  
  35. extern int Slrn_GroupLens_Port;
  36.  
  37. #endif
  38.  
  39.  
  40.